home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / Etsearch < prev    next >
Text File  |  2005-12-09  |  713b  |  31 lines

  1. #!/bin/sh
  2. #
  3. # Eterm Search Utility
  4. #
  5. # $Id: Etsearch,v 1.1 2000/02/11 00:25:07 mej Exp $
  6.  
  7. if [ $# -gt 1 -o "X$1" = "X-h" -o "X$1" = "X--help" ]; then
  8.   echo "Syntax:  Etsearch [string]"
  9.   echo "   (To clear the highlighting from a previous search,"
  10.   echo "    do not specify a string.)"
  11.   echo
  12.   exit 0
  13. fi
  14.  
  15. # Code to figure out if we need 'echo -n' or 'echo "\c"', stolen from configure
  16. if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
  17.   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  18.   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  19.     ac_n= ac_c='
  20. '
  21.   else
  22.     ac_n=-n ac_c=
  23.   fi
  24. else
  25.   ac_n= ac_c='\c'
  26. fi
  27.  
  28. STR="$1"
  29.  
  30. echo $ac_n "]6;72;${STR}$ac_c"
  31.